home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / extra_2 / render10.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1995-10-26  |  617b  |  28 lines

  1. @echo off
  2.  
  3. set destination=%windir%
  4. if exist %windir%\win.com goto copy_files
  5.  
  6. :prompt_for_path
  7. what s "Enter the path to your windows directory (e.g. c:\windows) "
  8. set destination=%what%
  9. if exist %what%\win.com goto copy_files
  10.  
  11. goto prompt_for_path
  12.  
  13. :copy_files
  14. echo Creating directory %destination%\render
  15. md %destination%\render
  16. echo .
  17. echo Copying render.scr & render.ini to %destination%
  18. copy render.scr %destination%
  19. copy render.ini %destination%
  20. echo .
  21. echo Copying data files to %destination%\render
  22. copy *.rdr %destination%\render
  23. echo .
  24. echo .
  25. echo Screen saver installed!
  26. pause
  27.  
  28.